Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 936 Bytes

HTML-CSS 연결.md

File metadata and controls

26 lines (23 loc) · 936 Bytes

HTML-CSS 연결

<!doctype html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>title</title>
    <!-- link 요소를 통해 HTML-CSS 연결 을 할 수 있다 -->
    <link rel="stylesheet" href="./index.css">
</head>
<body>
<h1 class="title">Hello World</h1>
</body>
</html>
  • link 요소를 통해 HTML-CSS 연결을 할 수 있다.
    • rel : 현재 문서와 연결한 아이템의 관계가 어떻게 되는지 설명(주로 stylesheet)
    • href: 연결된 아이템의 외부 리소스의 경로